home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / lingua / unit2.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  2KB  |  53 lines

  1. unit Unit2;
  2. (***************************************************************************)
  3. (*                                                                         *)
  4. (*   #####    #####     #####   #####    #####    ####    ######  #######  *)
  5. (*  #        #     #   #          #     #        #    #   #          #     *)
  6. (*  #        #     #   #  ###     #      ####    #    #   ###        #     *)
  7. (*  #        #     #   #    #     #          #   #    #   #          #     *)
  8. (*   #####    #####     #####   #####   #####     ####    #          #     *)
  9. (*                                                                         *)
  10. (***************************************************************************)
  11. {
  12.  (c) 1995 Cogisoft
  13.  This component is FREE distribution. Use it for your own utilization.
  14.  But you can't sell an application, using this component, without the
  15.  authorization of Cogisoft.
  16.  
  17.  COGISOFT,H⌠tel de MΘziΦres,19 rue Michel Le Comte,75003 PARIS,FRANCE
  18.  Tel:(1)40-65-04-04, FAX:(1)42-72-27-87
  19.  
  20.  NO CODING !!!
  21.  Jerome VOLLET, CompuServe : 100560,3342
  22. }
  23. interface
  24.  
  25. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  26.   Buttons, ExtCtrls, Translat, Lingua;
  27.  
  28. type
  29.   TAboutBox = class(TForm)
  30.     Panel1: TPanel;
  31.     OKButton: TBitBtn;
  32.     ProgramIcon: TImage;
  33.     ProductName: TLabel;
  34.     Version: TLabel;
  35.     Copyright: TLabel;
  36.     Comments: TLabel;
  37.     Lingua1: TLingua;
  38.   private
  39.     { Private declarations }
  40.   public
  41.     { Public declarations }
  42.   end;
  43.  
  44. var
  45.   AboutBox: TAboutBox;
  46.  
  47. implementation
  48.  
  49. {$R *.DFM}
  50.  
  51. end.
  52.  
  53.